home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / mouse.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  49 lines

  1. /*
  2.  * mouse.h --
  3.  *
  4.  *    Declarations for things exported by devMouse.c to the rest
  5.  *    of the device module.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/mouse.h,v 9.2 91/10/18 01:21:47 dlong Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVMOUSE
  20. #define _DEVMOUSE
  21.  
  22. #ifdef sun4c
  23. #    ifndef _DEVZ8530
  24. #        include <z8530.h>
  25. #    endif
  26. #endif
  27.  
  28. extern ReturnStatus    DevMouseClose _ARGS_((Fs_Device *devicePtr,
  29.     int useFlags, int openCount, int writerCount));
  30. #ifdef sun4c
  31. extern void        DevMouseInit _ARGS_((DevZ8530Device *virtAddr,
  32.     int vector));
  33. #else
  34. extern void        DevMouseInit _ARGS_((void));
  35. #endif
  36. extern void        DevMouseInterrupt _ARGS_((void));
  37. extern ReturnStatus    DevMouseIOControl _ARGS_((Fs_Device *devicePtr,
  38.     Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  39. extern ReturnStatus    DevMouseOpen _ARGS_((Fs_Device *devicePtr,
  40.     int useFlags, Fs_NotifyToken token, int *flagsPtr));
  41. extern ReturnStatus    DevMouseRead _ARGS_((Fs_Device *devicePtr,
  42.     Fs_IOParam *readPtr, Fs_IOReply *replyPtr));
  43. extern ReturnStatus    DevMouseSelect _ARGS_((Fs_Device *devicePtr, 
  44.     int *readPtr, int *writePtr, int *exceptPtr));
  45. extern ReturnStatus    DevMouseWrite _ARGS_((Fs_Device *devicePtr,
  46.     Fs_IOParam *writePtr, Fs_IOReply *replyPtr));
  47.  
  48. #endif /* _DEVMOUSE */
  49.